|
Install Ruby
2013/01/24 |
| [1] | Install Ruby |
|
[root@www ~]#
yum -y install ruby
[root@www ~]#
vi /etc/httpd/conf/httpd.conf # line 294: add extension for ruby script AddHandler cgi-script .cgi .pl .rb
systemctl restart httpd.service |
| [2] | Create a test script and make sure if it works. |
|
[root@www ~]#
vi /var/www/html/index.rb
#!/usr/bin/ruby
print "Content-type: text/html\n\n"
print "<html>\n<body>\n"
print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n"
print Time.now.strftime('%Y/%m/%d')
print "\n</div>\n"
print "</body>\n</html>\n"
chmod 705 /var/www/html/index.rb |
|